Skip Rotten Green Test ^^^^^ **Definition:** * Contains guards to stop their execution early under certain conditions. **Code Example:** .. code-block:: java @Test public void testNormalizedKeyReadWriter(){ . . . TypeComparator comp1 = getComparator(true); if(!comp1.supportsSerializationWithKeyNormalization()){ return ; } . . . assertTrue(comp1.compareToReference(comp2) == 0); . . . } **References:** .. admonition:: Quality attributes * :octicon:`file-code;1em` - Code Example * :octicon:`comment-discussion;1em` - Cause and Effect * :octicon:`graph;1em` - Frequency * :octicon:`sync;1em` - Refactoring * `RTj: a Java framework for detecting and refactoring rotten green test cases `_ :octicon:`file-code;1em` :octicon:`comment-discussion;1em` :octicon:`graph;1em` :octicon:`sync;1em`